码迷,mamicode.com
首页 >  
搜索关键字:yum list | grep zsh    ( 87714个结果
后台获取的map集合封装json
let list = [] let arr = {'a':'1','b':'2','c':'3','d':'4'} for(var key in arr){ console.log("key:"+key+",value:"+arr[key]) list.push({ 'key':key, 'valu ...
分类:Web程序   时间:2021-05-24 14:32:47    阅读次数:0
大神教你如何给脚本写一个守护进程
在我们日常运维中,写脚本监控一个进程是比较常见的操作,比如我要监控mysql进程是否消失,如果消失就重启mysql。 用下面这段代码就可以实现: #!/bin/sh Date=` date ‘+%c’` while : do if ! ps aux | grep -w mysqld | grep - ...
分类:系统相关   时间:2021-05-24 14:22:35    阅读次数:0
Python collections
collections collections是Python内建的一个集合模块,提供了许多有用的集合类。 nametuple是一个函数,它用来创建一个自定义的tuple对象,并且规定了tuple元素的个数,并可以用属性而不是索引来引用tuple的某个元素。这样一来,我们用namedtuple可以很方 ...
分类:编程语言   时间:2021-05-24 14:16:35    阅读次数:0
实验四
with open('data1_1.txt', 'r', encoding = 'utf-8') as f: data=f.readlines()n = 0for line in data: if line.strip('\n') == '': continue n+=1print(f'共{n}行 ...
分类:其他好文   时间:2021-05-24 14:12:19    阅读次数:0
数据结构 03-树2 List Leaves (25 分)
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:其他好文   时间:2021-05-24 14:03:04    阅读次数:0
Linux yum命令
Linux yum命令 1. yum简介 yum( Yellow dog Updater, Modified)是一个在 Fedora 和 RedHat 以及 SUSE 中的 Shell 前端软件包管理器。 基于 RPM 包管理,能够从指定的服务器自动下载 RPM 包并且安装,可以自动处理依赖性关系, ...
分类:系统相关   时间:2021-05-24 13:44:45    阅读次数:0
Java的特性和优势
Java特性和优势 简单性 面向对象 可移植性 高性能 分布式 动态性 多线程 安全性 健壮性 ...
分类:编程语言   时间:2021-05-24 13:44:34    阅读次数:0
Linux命令7
Linux RPM与YUM RPM安装文件,类似于setup.exe rpm -qa | grep firefox firefox-60.2.2-1.el7.centos.x86_64 名称:firefox 版本号:60.2.2-1 使用操作系统:el7.centos.x86_64 表示centos ...
分类:系统相关   时间:2021-05-24 13:42:07    阅读次数:0
windows中的换行符和Linux中的换行符
# cat -A tmp.tmp 120.4987 12.717858^M$ ^M 对应的字符是 \r # cat tmp.txt | awk -vRS='\r\n' '{print $2,$1}' 或者转换格式文件 yum install dos2unix -y dos2unix tmp.tmp ...
分类:Windows程序   时间:2021-05-24 13:41:55    阅读次数:0
Linux命令9
日志管理 在 /var/log lastlog 命令查看用户最后一次登录情况 案例 cat secure 查看登录的安全信息 时间 主机名 事件或服务或程序 事件信息描述 日志管理服务 rsyslogd ps -aux | grep rsyslogd | -v grep (-v反向匹配,) syst ...
分类:系统相关   时间:2021-05-24 13:40:41    阅读次数:0
87714条   上一页 1 ... 37 38 39 40 41 ... 8772 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!